home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
smaltalk
/
manchest.lha
/
MANCHESTER
/
manchester
/
4.1
/
ComposedText-asImage.st
< prev
next >
Wrap
Text File
|
1993-07-24
|
684b
|
27 lines
" NAME ComposedText-asImage
AUTHOR Bernard Horan <bernard@is.morgan.com>
CONTRIBUTOR Bernard Horan <bernard@is.morgan.com>
FUNCTION conversion method
ST-VERSIONS 4.1
PREREQUISITES
CONFLICTS
DISTRIBUTION global
VERSION 2.0
DATE September 1992
SUMMARY One method to convert a composedText to an Image. BH, 25/9/92"!
'From Objectworks\Smalltalk(R), Release 4.1 of 15 April 1992 on 10 September 1992 at 4:00:33 am'!
!ComposedText methodsFor: 'converting'!
asImage
"Bernard Horan, 10 September 1992"
"self printString asComposedText asImage"
| pixmap |
pixmap := Pixmap extent: self bounds extent.
self displayOn: pixmap graphicsContext.
^pixmap asImage! !